iT邦幫忙

2017 iT 邦幫忙鐵人賽
DAY 22
0
Modern Web

網頁程式設計so easy系列 第 22

Day21 [SESSION、檔案處理、電子郵件處理範例-1]

  • 分享至 

  • xImage
  •  

概念:
http://ithelp.ithome.com.tw/upload/images/20161222/20103385PAaOENnCdF.png

寫入csv檔、寄送email我選擇使用ajax到php來實現,各位也可以試著使用javaScript做。


form.html(表單)

http://ithelp.ithome.com.tw/upload/images/20161222/201033853EBgLW221B.png

程式碼:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8" />
    <title>form.html</title>
</head>

<body>
    <h1>Basic Information</h1>
    <hr>
    <form action="saveAndSend.php" method="post" name="info">
        <label for="name">NAME:</label>
        <br>
        <input type="text" name="name" placeholder="輸入姓名" required autofocus/>
        <br>
        
        <label for="tel">Tel:</label>
        <br>
        <input type="tel" name="tel" />
        <br>
        <label for="birthday">Birthday:</label>
        <br>
        <input type="date" name="birthday" />
        <br>
        <label for="email">EMail:</label>
        <br>
        <input type="email" name="email" placeholder="@gmail.com" />
        <br>
        <label for="address">Address:</label>
        <br>
        <input type="text" name="address" size="50"/>
        <br>
        <br>
        <input type="submit" />
        <input type="reset" />
    </form>
</body>

</html>

參考之前html介紹之文章


上一篇
Day20 [PHP狀態管理]
下一篇
Day22 [SESSION、檔案處理、電子郵件處理範例-2]
系列文
網頁程式設計so easy30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言